home *** CD-ROM | disk | FTP | other *** search
- \ COMPRESS.S
- \ Space compression: 2 or adjacent spaces are compressed into one. This
- \ also compresses multiple ASCII tabs (hex 09) into one space.
-
- \s=*ic\09\20 \ ignore consecutive white space from start of job
-
- \09=\20*ic\09\20 \ ignore consecutive white space after the first tab
- =\20*ic\09\20 \ ignore consecutive white space after the first space
- \0a=\0a*ic\09\20 \ ignore consecutive white space after a CRLF
-
-